home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLStringShape.h < prev    next >
Encoding:
Text File  |  1997-06-14  |  337 b   |  23 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved.
  3.  
  4. #ifndef __SHAPESTRING_H
  5. #define __SHAPESTRING_H
  6.  
  7. #include "CLShape.h"
  8.  
  9. class TStyle;
  10.  
  11. class TStringShape:
  12.     public TShape
  13. {
  14. protected:
  15.     int mX, mY;
  16.     char *mString;
  17.     TStyle *mStyle;
  18. public:
  19.     TStringShape( TStyle*, int, int, char* );
  20.     virtual void RenderOn( TDrawSlate* );
  21. };
  22.  
  23. #endif